home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Info / For Developers / LinkField / LinkField Readme < prev   
Text File  |  1999-08-23  |  2KB  |  35 lines

  1. LinkField Class for REALbasic
  2.  
  3. LinkField is a RealBasic class based on EditField. It essentially does two things: lets you know when the user has clicked on an URL in your field, and marks the URLs with underline and (by default) blue color - including when the text changes. In addition, LinkField can, if you so desire, let the user select words just by clicking on them.
  4.  
  5.  
  6. Using LinkField
  7.  
  8. LinkField is very easy to use. In most respects, it behaves just as any normal EditField. The only differences is that URLs are marked, and when the user clicks on text that is interpreted as a URL, a LinkClick event is fired, with the URL clicked on sent as a parameter. Typically you would have the user's web browser go to that URL, with the showURL method in Applet windows.
  9.  
  10. Note: LinkField EditFields must have the Styled property set. Also, if you want the LinkClick events to be fired, it can not be ReadOnly.
  11.  
  12. There are only two methods and one property in addition to the normal EditField methods and properties:
  13.  
  14. setHighlightColor(c as Color)
  15. sets the color links are shown in.
  16.  
  17. addProtocol(protocol as string)
  18. adds a new protocol. By default, LinkFields understand http://, https://, ftp://, mailto:, hotline://, and telnet://. Normally you would use this method in the Open event.
  19.  
  20. Finally, you can have the LinkField select any word clicked on, not just links, with:
  21.  
  22. highlightWords = true
  23. This property is false by default.
  24.  
  25.  
  26. LinkField is freeware for personal use - enjoy!
  27. If you plan on using LinkField for commercial/shareware, please email me so we can arrange something.
  28.  
  29. Contact info:
  30. Stefan Möller
  31. SpectroGrafx Productions
  32. stefan@spectrografx.com
  33. http://www.spectrografx.com
  34.  
  35. * I can often be found at the RB cafe, hotline://cafe.realbasic.com. My nickname, "Stefan", usually gives me away.